home *** CD-ROM | disk | FTP | other *** search
- #
- # NeXTstep/options.mk --- Part of Makefile for PFE, compiler options for NeXT
- #
-
- PREFIX = /usr/local
- PFELIB = $(PREFIX)/lib/pfe
- PFEHLP = $(PFELIB)/help
-
- # cc on NeXTstep is actually a sort of gcc 2.2
- # Global register variables don't work with that. So if you install a newer
- # version of gcc you're better off.
- # The config script gets confused by the precompiled headers too.
- #CC = cc -Wall
- #OPTIM = -O2 -fomit-frame-pointer
- #DEBUG = -g -O
-
- CC = gcc -Wall
- # comment out -DUNROLL_NEXT when you run it on a Pentium
- OPTIM = -O2 -fomit-frame-pointer -DUSE_REGS -DUNROLL_NEXT
- DEBUG = -g -O
-
- CL = $(CC)
- CPP = $(CC) -E
-
- STRIP = -s
- OPTIONS = -D_BSD# -D_NEXT_SOURCE
- TERM_O = termunix$o
- SYS_O = unix$o
- LFLAGS =# -v
- LIBS = -ltermlib -lm
-
-
-